c04183b41ffc324bf27aeb41cd00e2f3cd5961a0,KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/HtmlTextExtractor.java,HtmlTextExtractor,index,#AbstractFile#IngestJobContext#,100

Before Change


        }

        //after all chunks, ingest the parent file without content itself, and store numChunks
        ingester.ingest(this);

        return success;
    }

After Change


        }

        //after all chunks, ingest the parent file without content itself, and store numChunks
        if (!context.fileIngestIsCancelled()) {
            ingester.ingest(this);
        }
        return success;
    }